From: Ian Campbell Date: Tue, 22 Oct 2013 16:12:14 +0000 (+0100) Subject: xen: arm: correct XEN_COMPILE_ARCH autodetection for arm64 X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6135 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=badd47de999561ac31b7b6b7b2c3b34ef0476dad;p=xen.git xen: arm: correct XEN_COMPILE_ARCH autodetection for arm64 At least on aarch64 openSUSE running with qemu-user-aarch64 "uname -m" reports "aarch64" and not "armv8" so include that in the seddery. There's no harm leaving the existing armv8 rune too so do so. Signed-off-by: Ian Campbell Acked-by: Julien Grall --- diff --git a/Config.mk b/Config.mk index 1879454c1a..7f3d8c7d75 100644 --- a/Config.mk +++ b/Config.mk @@ -24,7 +24,8 @@ coverage ?= n XEN_COMPILE_ARCH ?= $(shell uname -m | sed -e s/i.86/x86_32/ \ -e s/i86pc/x86_32/ -e s/amd64/x86_64/ \ - -e s/armv7.*/arm32/ -e s/armv8.*/arm64/) + -e s/armv7.*/arm32/ -e s/armv8.*/arm64/ \ + -e s/aarch64/arm64/) XEN_TARGET_ARCH ?= $(XEN_COMPILE_ARCH) XEN_OS ?= $(shell uname -s)